home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / util / cdity / ModeProSrc.lha / Prefs / MPPWinTitle.c < prev    next >
C/C++ Source or Header  |  1998-12-25  |  355b  |  14 lines

  1. /*
  2. #include "mppexterns.h"
  3.  
  4. char WindowTitle[512];
  5. char ProjectName[256];
  6.  
  7. void BuildWinTitle(void)
  8. {
  9.   sprintf(WindowTitle,"%s - %s = \"%s\" - %s = \"%s\"",
  10.         GetString(MSG_WINTITLE), 
  11.         GetString(MSG_WINTITLE_PROJECT),ProjectName, 
  12.         GetString(MSG_WINTITLE_HOTKEY),MPSem->HotKey);
  13.   SetWindowTitles(Window,WindowTitle,WindowTitle);
  14. }*/